JanetDocsSourcePlaygroundI'm feeling luckyCommunityGitHub sign in

<=

core-api


    function

    (<= & xs)

    Check if xs is in non-descending order. Returns a boolean.


1 exampleSign in to add an example
Loading...
(<= 1 2 3) # => true
(<= 1 2 1) # => false
pepePlayground